All Questions
Tagged with web-servicescaml-query
25 questions
1vote
0answers
299views
Join two lists without lookup column using caml query and sharepoint web services
I have 2 lists with the following columns: list1 City ID list2 Customer ID I need to join these two lists on the basis of similar ID, I can't use the lookup column method. How can it be possible? (...
0votes
1answer
60views
SharePoint 2013 Site workflow to locate documents with a given date
I want to build a SharePoint 2013 Site workflow for SharePoint Online using SharePoint Designer. The idea is my workflow checks every day to see if a reissue date is equal to 4 months from the ...
2votes
1answer
317views
Lookup column value not updated - ListsWebServices and Asp.NET
I am having trouble inserting new record in "Clients" list on our server, I am in learning phase for working with SharePoint Lists Web Services and I am trying to insert a new item in a list which ...
1vote
0answers
300views
CAML query results multiple row for people picker field with multiple value in SharePoint webservices
Below is the SharePoint web service I am using to get list items from a SharePoint 2007 calendar list. The calendar list has a people picker field which can have more than one user. Now as I run the ...
1vote
1answer
793views
Sharepoint List Threshold even when returning less then 5000 records
I work for a company that creates software that interfaces with Sharepoint using Web Services. We have run into an issue at a few clients where we are hitting the threshold limit on document ...
1vote
1answer
686views
GetListItems returns no items when filtering by lookup columns
I am using the SP Lists service, the GetListItems method as follows (guidView is set to the "All Items" view): listasSoap.getListItems( guidList, guidView, null, viewFields, "0", null, "...
4votes
3answers
5kviews
CAML query for sharepoint list not working
I have a CAML query where I am getting records between a date range for a sharepoint 2010 list through an asmx web method call. It looks like this <Query><Where><And><Geq><...
1vote
2answers
1kviews
CAML In clause - Value does not fall within the expected range
I get a 'Value does not fall within the expected range' error from the following CAML. <Query> <Where> <In> <FieldRef Name="ID"/> <Values> <...
4votes
1answer
6kviews
Help converting XmlNode to DataSet/DataTable, from SharePoint Web Services, Lists.asmx
This is my first post here, but used this site a lot :) My question is how I can convert an XmlNode, obtained through the Lists.asmx SharePoint web service, to a DataSet / DataTable. The reason I ...
1vote
0answers
161views
getting top X items in each folder with a CAML Query
i'm trying to do a visual representation of a document library using javascript and webservices. basically i want to present the folders in the library, with a preview of the first few files in each ...
0votes
1answer
387views
Getting Information About Deleted Item from GetListItemChangesSinceToken
When calling GetListItemChangesSinceToken, and processing deletions, the data returned looks like this; <Changes LastChangeToken="1;3;2e5fae54-20c4-4a9f-8e40-ae11784ee547;634873557043070000;106627"...
2votes
1answer
343views
Should we use web service lists.asmx over CAML when working with large lists
There is a list that has around 100k items in a SharePoint Site Collection. This site has been customized to serve certain business requirements through visual webparts. While, regular CRUD (create,...
1vote
2answers
3kviews
Lists.GetListItems Query for items with a specific author
I am trying to query a list in SharePoint 2007 to get the items of the list that were created by a specified user. Here is my CAML: <Query> <Where> <Eq> <...
1vote
3answers
4kviews
What is the difference between CamlQuery and SPQuery
Maybe a simple question, when to use CamlQuery and when to use SPQuery ? I think that SPQuery is used inside a WebPart running on the SharePoint server, and that CamlQuery is part of the Client ...
3votes
2answers
11kviews
Filtering items in a view using a CAML query
I'm having trouble querying SharePoint in such a way, as to combine a view results with my own CAML query inside a WCF service. It seems GetItems ignores my query, and just returns all the items in ...